d752c17acec397613ea6010deb86f0e762ef3adb,src/be/ibridge/kettle/job/entry/mail/JobEntryMailDialog.java,JobEntryMailDialog,open,#,134
Before Change
wCancel=new Button(shell, SWT.PUSH);
wCancel.setText(" &Cancel ");
BaseStepDialog.positionBottomButtons(shell, new Button[] { wOK, wCancel }, margin, wComment);
// Add listeners
lsCancel = new Listener() { public void handleEvent(Event e) { cancel(); } };
After Change
wCancel=new Button(shell, SWT.PUSH);
wCancel.setText(" &Cancel ");
BaseStepDialog.positionBottomButtons(shell, new Button[] { wOK, wCancel }, margin, null);
// Only send the comment in the mail body
wlOnlyComment=new Label(shell, SWT.RIGHT);